home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / pod / modpods / subs.pod < prev   
Encoding:
Text File  |  1994-12-26  |  333 b   |  17 lines  |  [TEXT/MPS ]

  1. =head1 NAME
  2.  
  3. subs - Perl pragma to predeclare sub names
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use subs qw(frob);
  8.     frob 3..10;
  9.  
  10. =head1 DESCRIPTION
  11.  
  12. This will predeclare all the subroutine whose names are 
  13. in the list, allowing you to use them without parentheses
  14. even before they're declared.
  15.  
  16. See L<perlmod/Pragmatic Modules> and L<strict/subs>.
  17.